6  Summary of Functions

Barplots

barplot(height = ,
        legend.text = ,
        beside = FALSE,
        col = ,
        main = ,
        xlab = ,
        ylab = ,
        ylim = )

Dot Charts

dotchart(x = ,
         bg = ,
         main = ,
         xlab = ,
         ylab = )

Pie Charts

pie(x = ,
    radius = ,
    col = ,
    main = )

Stem and Leaf Plots

stem(x = , scale = 1)

Histograms

hist(x = ,
     breaks = ,
     freq = TRUE,
     right = TRUE,
     include.lowest = TRUE,
     col = ,
     main = ,
     xlab = ,
     ylab = ,
     ylim = )

Kernel Density Estimators

density(x)
lines(col = , lwd = )
plot(col = ,
     lwd = ,
     main = ,
     xlab = ,
     ylab = ,)

QQ Plots

qqnorm(y = , main = )
qqline(y = )